home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / FILER / SMART.ZIP / !SmartDir / h / module < prev    next >
Text File  |  1997-10-21  |  498b  |  15 lines

  1. #ifndef __module_h
  2. #define __module_h
  3.  
  4. #include "OS:os.h"
  5. #include "kernel.h"
  6.  
  7. extern os_error const *initialise(char const *cmd_tail, int len, void *pw);
  8. extern os_error const *finalise(int fatal, int podule, void *pw);
  9. extern os_error const *command(char *args, int argc, int cmd_no, void *pw);
  10. extern int post_filter_veneer(_kernel_swi_regs *r, void *pw);
  11. extern int post_filter_handler(_kernel_swi_regs *r, void *pw);
  12. extern void service_handler(int sn, _kernel_swi_regs *r, void *pw);
  13.  
  14. #endif
  15.